/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1912                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Re = 1.029*10^8 ---> Turbulent Intensity (I) = 0.16*((Re)^(-1/8)) =  0.0159
// k = (3/2)*(I*U_ref)^2 = 713.8282

dimensions      [0 2 -2 0 0 0 0];

internalField   uniform 600.528;

boundaryField
{
    farfield
    {
        type            inletOutlet;
        inletValue      uniform 600.528;
        value           uniform 600.528;
    }
    wall
    {
        type            kqRWallFunction;
        value           uniform 600.528;
    }
    symmetry
    {
    	type		symmetry;
    }
 

}


// ************************************************************************* //
